home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / THIN C 2.0 / Projects / drawDots / drawDots.c next >
Encoding:
C/C++ Source or Header  |  1991-02-27  |  115 b   |  12 lines  |  [TEXT/THIN]

  1. DrawDots( int numDots )
  2. {
  3.     int    i;
  4.  
  5.     for ( i = 0; i < numDots; i++ )
  6.         printf( "." );
  7. }
  8.  
  9. main()
  10. {
  11.     DrawDots( 30 );
  12. }